<filesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "max-age=84600, public"
</filesMatch>

## EXPIRES HEADER CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year"
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType application/javascript "access 1 month"
ExpiresByType application/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 2 days"
</IfModule>
## EXPIRES HEADER CACHING ##

<FilesMatch "\.(ico|jpe?g|png|gif|css|js)$">
    <IfModule mod_expires.c>
        ExpiresActive On
        ExpiresDefault "access plus 1 year"
    </IfModule>
    <IfModule mod_headers.c>
        Header set Expires "Sun, 27 May 2020 00:00:00 GMT"
        Header unset ETag
    </IfModule>
 
</FilesMatch>

<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
Header set Cache-Control "public"
</FilesMatch>

<FilesMatch "\.(js)$">
Header set Vary "Accept-Encoding"
</FilesMatch>

#php_flag display_startup_errors off
#php_flag display_errors off

SetOutputFilter DEFLATE
Header unset ETag
FileETag None

<FilesMatch "\.(htm|html)$">
ForceType 'text/html; charset=iso-8859-1' 
</FilesMatch>